/* 滚动内容样式 */
.scroll_main {
	display: block;
}

/* 滚动内容区样式 */
.scroll_wrap {
	width: 100%;
	height: 320px;
	position: relative;
}
/* 滚动内容样式 */
.scroll_wrap .scroll_cont {
	height: 100%;
	overflow: hidden;
	width: 98%;
}
/* 滚动条 */
.scroll_wrap .scroll_bar {
	position: absolute;
	top:0;
	right:0;
	width: 5px;
	height: 100%;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.2);
}
/* 滚动块 */
.scroll_wrap .scroll_slider {
	position: absolute;
	top: 0;
	left: 0px;
	width: 5px;
	height: 48px;
	background-color: #1d86ec;
	border-radius:5px;
}
.scroll_wrap .scroll_slider:hover{
	opacity: 1
}